laravel where is null

34

DB::table('users')	->whereNotNull('name')	->get();
DB::table('users')	->whereNull('name')	->get();

Comments

Submit
0 Comments